home *** CD-ROM | disk | FTP | other *** search
/ CyberMycha 2008 January / Cybermycha 1_2008.iso / Data.cab / _61D1EE09291D46DEA0C250C6E09CF1B4 < prev    next >
Encoding:
Text File  |  2004-03-17  |  623 b   |  23 lines

  1. regc4f( 5, %daycolor_r, %daycolor_g, %daycolor_b, %daycolor_a )
  2. regc4f( 7, %ambient_r, %ambient_g, %ambient_b, %ambient_a )
  3. pshader("
  4.  
  5. ps_1_1
  6.  
  7. tex t0 ;texture (RGB - color, A<0-127> - Opacity, A<128-255> - Specular Mask)
  8. tex t1 ;Terrain lightmap
  9. tex t2 ;clouds
  10.  
  11.  
  12.     mul            r0.rgb, t0, c5            ;applying daytime to color
  13.     +mul        r0.a, t1.a, 1-t2.a        ;multiplying shadows
  14.  
  15.     mul            r0.rgb, r0, v0            ;applying fx color to color
  16.     +mad_sat    r0.a, r0.a, c7.b, c7.a    ;applying ambient to lighting
  17.  
  18.     mul            r0.rgb, r0, r0.a        ;applying lighting to color
  19.     +mul        r0.a, t0.a, v0.a        ;applying fx opacity to texture opaciy
  20. ")
  21.  
  22.  
  23.